/* =========================
   PRODUCT GROUPS
========================= */

.product-groups{
  padding:100px 0;
  background:#ffffff;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top:60px;
}

.product-card{
  text-decoration:none;
  color:inherit;
  border-radius:10px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 40px rgba(0,0,0,.08);
  transition:.35s ease;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 60px rgba(0,0,0,.12);
}

/* ÜST GÖRSEL */
.product-image{
  height:220px;
  background-size:cover;
  background-position:center;
  background-color:#e9eef0; /* görsel yoksa */
  position:relative;
}

.product-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.05),
    rgba(0,0,0,.35)
  );
}

/* ALT METİN */
.product-content{
  padding:26px 24px 32px;
}

.product-content h3{
  font-size:18px;
  margin-bottom:12px;
  color:#0fa3b1;
}

.product-content p{
  font-size:14px;
  line-height:1.7;
  color:#444;
}

/* MOBILE */
@media(max-width:992px){
  .product-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
}
